home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / dbxout.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  36KB  |  1,194 lines

  1. /* Output dbx-format symbol table information from GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4.    $Id: dbxout.c,v 1.2 91/08/06 13:40:01 jeff Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* Output dbx-format symbol table data.
  24.    This consists of many symbol table entries, each of them
  25.    a .stabs assembler pseudo-op with four operands:
  26.    a "name" which is really a description of one symbol and its type,
  27.    a "code", which is a symbol defined in stab.h whose name starts with N_,
  28.    an unused operand always 0,
  29.    and a "value" which is an address or an offset.
  30.    The name is enclosed in doublequote characters.
  31.  
  32.    Each function, variable, typedef, and structure tag
  33.    has a symbol table entry to define it.
  34.    The beginning and end of each level of name scoping within
  35.    a function are also marked by special symbol table entries.
  36.  
  37.    The "name" consists of the symbol name, a colon, a kind-of-symbol letter,
  38.    and a data type number.  The data type number may be followed by
  39.    "=" and a type definition; normally this will happen the first time
  40.    the type number is mentioned.  The type definition may refer to
  41.    other types by number, and those type numbers may be followed
  42.    by "=" and nested definitions.
  43.  
  44.    This can make the "name" quite long.
  45.    When a name is more than 80 characters, we split the .stabs pseudo-op
  46.    into two .stabs pseudo-ops, both sharing the same "code" and "value".
  47.    The first one is marked as continued with a double-backslash at the
  48.    end of its "name".
  49.  
  50.    The kind-of-symbol letter distinguished function names from global
  51.    variables from file-scope variables from parameters from auto
  52.    variables in memory from typedef names from register variables.
  53.    See `dbxout_symbol'.
  54.  
  55.    The "code" is mostly redundant with the kind-of-symbol letter
  56.    that goes in the "name", but not entirely: for symbols located
  57.    in static storage, the "code" says which segment the address is in,
  58.    which controls how it is relocated.
  59.  
  60.    The "value" for a symbol in static storage
  61.    is the core address of the symbol (actually, the assembler
  62.    label for the symbol).  For a symbol located in a stack slot
  63.    it is the stack offset; for one in a register, the register number.
  64.    For a typedef symbol, it is zero.
  65.  
  66.    If DEBUG_SYMS_TEXT is defined, all debugging symbols must be
  67.    output while in the text section.
  68.  
  69.    For more on data type definitions, see `dbxout_type'.  */
  70.  
  71. #include "config.h"
  72. #include "tree.h"
  73. #include "rtl.h"
  74. #include "flags.h"
  75. #include <stdio.h>
  76.  
  77. /* Typical USG systems don't have stab.h, and they also have
  78.    no use for DBX-format debugging info.  */
  79.  
  80. #ifdef DBX_DEBUGGING_INFO
  81.  
  82. #ifdef DEBUG_SYMS_TEXT
  83. #define FORCE_TEXT text_section ();
  84. #else
  85. #define FORCE_TEXT
  86. #endif
  87.  
  88. #ifdef USG
  89. #include "stab.h"  /* If doing DBX on sysV, use our own stab.h.  */
  90. #else
  91. #include <stab.h>  /* On BSD, use the system's stab.h.  */
  92. #endif /* not USG */
  93.  
  94. /* Stream for writing to assembler file.  */
  95.  
  96. static FILE *asmfile;
  97.  
  98. enum typestatus {TYPE_UNSEEN, TYPE_XREF, TYPE_DEFINED};
  99.  
  100. /* Vector recording the status of describing C data types.
  101.    When we first notice a data type (a tree node),
  102.    we assign it a number using next_type_number.
  103.    That is its index in this vector.
  104.    The vector element says whether we have yet output
  105.    the definition of the type.  TYPE_XREF says we have
  106.    output it as a cross-reference only.  */
  107.  
  108. enum typestatus *typevec;
  109.  
  110. /* Number of elements of space allocated in `typevec'.  */
  111.  
  112. static int typevec_len;
  113.  
  114. /* In dbx output, each type gets a unique number.
  115.    This is the number for the next type output.
  116.    The number, once assigned, is in the TYPE_SYMTAB_ADDRESS field.  */
  117.  
  118. static int next_type_number;
  119.  
  120. /* In dbx output, we must assign symbol-blocks id numbers
  121.    in the order in which their beginnings are encountered.
  122.    We output debugging info that refers to the beginning and
  123.    end of the ranges of code in each block
  124.    with assembler labels LBBn and LBEn, where n is the block number.
  125.    The labels are generated in final, which assigns numbers to the
  126.    blocks in the same way.  */
  127.  
  128. static int next_block_number;
  129.  
  130. /* These variables are for dbxout_symbol to communicate to
  131.    dbxout_finish_symbol.
  132.    current_sym_code is the symbol-type-code, a symbol N_... define in stab.h.
  133.    current_sym_value and current_sym_addr are two ways to address the
  134.    value to store in the symtab entry.
  135.    current_sym_addr if nonzero represents the value as an rtx.
  136.    If that is zero, current_sym_value is used.  This is used
  137.    when the value is an offset (such as for auto variables,
  138.    register variables and parms).  */
  139.  
  140. static int current_sym_code;
  141. static int current_sym_value;
  142. static rtx current_sym_addr;
  143.  
  144. /* Number of chars of symbol-description generated so far for the
  145.    current symbol.  Used by CHARS and CONTIN.  */
  146.  
  147. static int current_sym_nchars;
  148.  
  149. /* Report having output N chars of the current symbol-description.  */
  150.  
  151. #define CHARS(N) (current_sym_nchars += (N))
  152.  
  153. /* Break the current symbol-description, generating a continuation,
  154.    if it has become long.  */
  155.  
  156. #ifndef DBX_CONTIN_LENGTH
  157. #define DBX_CONTIN_LENGTH 80
  158. #endif
  159.  
  160. #if DBX_CONTIN_LENGTH > 0
  161. #define CONTIN  \
  162.   do {if (current_sym_nchars > DBX_CONTIN_LENGTH) dbxout_continue ();} while (0)
  163. #else
  164. #define CONTIN
  165. #endif
  166.  
  167. void dbxout_types ();
  168. void dbxout_tags ();
  169. void dbxout_args ();
  170. void dbxout_symbol ();
  171. static void dbxout_type_name ();
  172. static void dbxout_type ();
  173. static void dbxout_finish_symbol ();
  174. static void dbxout_continue ();
  175.  
  176. /* At the beginning of compilation, start writing the symbol table.
  177.    Initialize `typevec' and output the standard data types of C.  */
  178.  
  179. void
  180. dbxout_init (asm_file, input_file_name)
  181.      FILE *asm_file;
  182.      char *input_file_name;
  183. {
  184.   asmfile = asm_file;
  185.  
  186.   typevec_len = 100;
  187.   typevec = (enum typestatus *) xmalloc (typevec_len * sizeof typevec[0]);
  188.   bzero (typevec, typevec_len * sizeof typevec[0]);
  189.  
  190.   /* Used to put `Ltext:' before the reference, but that loses on sun 4.  */
  191.   fprintf (asmfile,
  192.        "\t.stabs \"%s\",%d,0,0,Ltext\nLtext:\n",
  193.        input_file_name, N_SO);
  194.  
  195.   next_type_number = 1;
  196.   next_block_number = 2;
  197.  
  198.   /* Make sure that types `int' and `char' have numbers 1 and 2.
  199.      Definitions of other integer types will refer to those numbers.  */
  200.  
  201.   dbxout_symbol (TYPE_NAME (integer_type_node), 0);
  202.   dbxout_symbol (TYPE_NAME (char_type_node), 0);
  203.  
  204.   /* Get all permanent types not yet gotten, and output them.  */
  205.  
  206.   dbxout_types (get_permanent_types ());
  207. }
  208.  
  209. /* Continue a symbol-description that gets too big.
  210.    End one symbol table entry with a double-backslash
  211.    and start a new one, eventually producing something like
  212.    .stabs "start......\\",code,0,value
  213.    .stabs "...rest",code,0,value   */
  214.  
  215. static void
  216. dbxout_continue ()
  217. {
  218. #ifdef DBX_CONTIN_CHAR
  219.   fprintf (asmfile, "%c", DBX_CONTIN_CHAR);
  220. #else
  221.   fprintf (asmfile, "\\\\");
  222. #endif
  223.   dbxout_finish_symbol ();
  224.   fprintf (asmfile, ".stabs \"");
  225.   current_sym_nchars = 0;
  226. }
  227.  
  228. /* Output a reference to a type.  If the type has not yet been
  229.    described in the dbx output, output its definition now.
  230.    For a type already defined, just refer to its definition
  231.    using the type number.
  232.  
  233.    If FULL is nonzero, and the type has been described only with
  234.    a forward-reference, output the definition now.
  235.    If FULL is zero in this case, just refer to the forward-reference
  236.    using the number previously allocated.  */
  237.  
  238. static void
  239. dbxout_type (type, full)
  240.      tree type;
  241.      int full;
  242. {
  243.   register tree tem;
  244.  
  245.   /* If there was an input error and we don't really have a type,
  246.      avoid crashing and write something that is at least valid
  247.      by assuming `int'.  */
  248.   if (type == error_mark_node)
  249.     type = integer_type_node;
  250.   else if (TYPE_SIZE (type) == 0)
  251.     type = TYPE_MAIN_VARIANT (type);
  252.  
  253.   if (TYPE_SYMTAB_ADDRESS (type) == 0)
  254.     {
  255.       /* Type has no dbx number assigned.  Assign next available number.  */
  256.       TYPE_SYMTAB_ADDRESS (type) = next_type_number++;
  257.  
  258.       /* Make sure type vector is long enough to record about this type.  */
  259.  
  260.       if (next_type_number == typevec_len)
  261.     {
  262.       typevec = (enum typestatus *) xrealloc (typevec, typevec_len * 2 * sizeof typevec[0]);
  263.       bzero (typevec + typevec_len, typevec_len * sizeof typevec[0]);
  264.       typevec_len *= 2;
  265.     }
  266.     }
  267.  
  268.   /* Output the number of this type, to refer to it.  */
  269.   fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  270.   CHARS (3);
  271.  
  272.   /* If this type's definition has been output or is now being output,
  273.      that is all.  */
  274.  
  275.   switch (typevec[TYPE_SYMTAB_ADDRESS (type)])
  276.     {
  277.     case TYPE_UNSEEN:
  278.       break;
  279.     case TYPE_XREF:
  280.       if (! full)
  281.     return;
  282.       break;
  283.     case TYPE_DEFINED:
  284.       return;
  285.     }
  286.  
  287. #ifdef DBX_NO_XREFS
  288.   /* For systems where dbx output does not allow the `=xsNAME:' syntax,
  289.      leave the type-number completely undefined rather than output
  290.      a cross-reference.  */
  291.   if (TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
  292.       || TREE_CODE (type) == ENUMERAL_TYPE)
  293.  
  294.     if ((TYPE_NAME (type) != 0 && !full)
  295.     || TYPE_SIZE (type) == 0)
  296.       {
  297.     typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  298.     return;
  299.       }
  300. #endif
  301.  
  302.   /* Output a definition now.  */
  303.  
  304.   fprintf (asmfile, "=");
  305.   CHARS (1);
  306.  
  307.   /* Mark it as defined, so that if it is self-referent
  308.      we will not get into an infinite recursion of definitions.  */
  309.  
  310.   typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_DEFINED;
  311.  
  312.   switch (TREE_CODE (type))
  313.     {
  314.     case VOID_TYPE:
  315.       /* For a void type, just define it as itself; ie, "5=5".
  316.      This makes us consider it defined
  317.      without saying what it is.  The debugger will make it
  318.      a void type when the reference is seen, and nothing will
  319.      ever override that default.  */
  320.       fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  321.       CHARS (3);
  322.       break;
  323.  
  324.     case INTEGER_TYPE:
  325.       if (type == char_type_node && ! TREE_UNSIGNED (type))
  326.     /* Output the type `char' as a subrange of itself!
  327.        I don't understand this definition, just copied it
  328.        from the output of pcc.  */
  329.     fprintf (asmfile, "r2;0;127;");
  330.       else
  331.     /* Output other integer types as subranges of `int'.  */
  332.     fprintf (asmfile, "r1;%d;%d;",
  333.          TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)),
  334.          TREE_INT_CST_LOW (TYPE_MAX_VALUE (type)));
  335.       CHARS (25);
  336.       break;
  337.  
  338.     case REAL_TYPE:
  339.       /* This must be magic.  */
  340.       fprintf (asmfile, "r1;%d;0;",
  341.            TREE_INT_CST_LOW (size_in_bytes (type)));
  342.       CHARS (16);
  343.       break;
  344.  
  345.     case ARRAY_TYPE:
  346.       /* Output "a" followed by a range type definition
  347.      for the index type of the array
  348.      followed by a reference to the target-type.
  349.      ar1;0;N;M for an array of type M and size N.  */
  350.       fprintf (asmfile, "ar1;0;%d;",
  351.            (TYPE_DOMAIN (type)
  352.         ? TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
  353.             : -1));
  354.       CHARS (17);
  355.       dbxout_type (TREE_TYPE (type), 0);
  356.       break;
  357.  
  358.     case RECORD_TYPE:
  359.     case UNION_TYPE:
  360.       /* Output a structure type.  */
  361.       if ((TYPE_NAME (type) != 0 && !full)
  362.       || TYPE_SIZE (type) == 0)
  363.     {
  364.       /* If the type is just a cross reference, output one
  365.          and mark the type as partially described.
  366.          If it later becomes defined, we will output
  367.          its real definition.
  368.          If the type has a name, don't nest its definition within
  369.          another type's definition; instead, output an xref
  370.          and let the definition come when the name is defined.  */
  371.       fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "xs" : "xu");
  372.       CHARS (3);
  373. #if 0      /* This assertion is legitimately false in C++.  */
  374.       /* We shouldn't be outputting a reference to a type before its
  375.          definition unless the type has a tag name.
  376.          A typedef name without a tag name should be impossible.  */
  377.       if (TREE_CODE (TYPE_NAME (type)) != IDENTIFIER_NODE)
  378.         abort ();
  379. #endif
  380.       dbxout_type_name (type);
  381.       fprintf (asmfile, ":");
  382.       typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  383.       break;
  384.     }
  385.       tem = size_in_bytes (type);
  386.       fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "s%d" : "u%d",
  387.            TREE_INT_CST_LOW (tem));
  388.  
  389.       if (TYPE_BASETYPES (type) && use_gdb_dbx_extensions)
  390.     {
  391.       putc ('!', asmfile);
  392.       putc ((TREE_PUBLIC (TYPE_BASETYPES (type)) ? '2' : '0'),
  393.         asmfile);
  394.       dbxout_type (TREE_VALUE (TYPE_BASETYPES (type)), 0);
  395.       putc (',', asmfile);
  396.       CHARS (3);
  397.     }
  398.       CHARS (11);
  399.  
  400.       for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
  401.     /* Output the name, type, position (in bits), size (in bits)
  402.        of each field.  */
  403.     /* Omit here the nameless fields that are used to skip bits.  */
  404.     if (DECL_NAME (tem) != 0)
  405.       {
  406.         /* Continue the line if necessary,
  407.            but not before the first field.  */
  408.         if (tem != TYPE_FIELDS (type))
  409.           CONTIN;
  410.         fprintf (asmfile, "%s:", IDENTIFIER_POINTER (DECL_NAME (tem)));
  411.         CHARS (2 + IDENTIFIER_LENGTH (DECL_NAME (tem)));
  412. #ifdef TREE_PRIVATE
  413.         if (use_gdb_dbx_extensions
  414.         && (TREE_PRIVATE (tem) || TREE_PROTECTED (tem)
  415.             || TREE_CODE (tem) != FIELD_DECL))
  416.           {
  417.         putc ('/', asmfile);
  418.         putc ((TREE_PRIVATE (tem) ? '0'
  419.                : TREE_PROTECTED (tem) ? '1' : '2'),
  420.               asmfile);
  421.         CHARS (2);
  422.         if (TREE_CODE (tem) == FUNCTION_DECL)
  423.           {
  424.             putc (':', asmfile);
  425.             CHARS (1);
  426.             dbxout_type (TREE_TYPE (tem), 0); /* FUNCTION_TYPE */
  427.             dbxout_args (TYPE_ARG_TYPES (TREE_TYPE (tem)));
  428. #ifdef TREE_VIRTUAL
  429.             fprintf (asmfile, ":%s;%c", 
  430.                  XSTR (XEXP (DECL_RTL (tem), 0), 0),
  431.                  TREE_VIRTUAL (tem) ? '*' : '.');
  432. #endif
  433.             CHARS (3 + strlen (XSTR (XEXP (DECL_RTL (tem), 0), 0)));
  434.           }
  435.         else
  436.           dbxout_type (TREE_TYPE (tem), 0);
  437.           }
  438.         else
  439. #endif
  440.           dbxout_type (TREE_TYPE (tem), 0);
  441.  
  442.         if (TREE_CODE (tem) == VAR_DECL)
  443.           {
  444.         if (use_gdb_dbx_extensions)
  445.           {
  446.             fprintf (asmfile, ":%s", 
  447.                  XSTR (XEXP (DECL_RTL (tem), 0), 0));
  448.             CHARS (2 + strlen (XSTR (XEXP (DECL_RTL (tem), 0), 0)));
  449.           }
  450.         else
  451.           {
  452.             fprintf (asmfile, ",0,0;");
  453.             CHARS (5);
  454.           }
  455.           }
  456.         else
  457.           {
  458.         fprintf (asmfile, ",%d,%d;", DECL_OFFSET (tem),
  459.              (TREE_INT_CST_LOW (DECL_SIZE (tem))
  460.               * DECL_SIZE_UNIT (tem)));
  461.         CHARS (23);
  462.           }
  463.       }
  464.  
  465.       putc (';', asmfile);
  466.       CHARS (1);
  467.       break;
  468.  
  469.     case ENUMERAL_TYPE:
  470.       if ((TYPE_NAME (type) != 0 && !full)
  471.       || TYPE_SIZE (type) == 0)
  472.     {
  473.       fprintf (asmfile, "xe");
  474.       CHARS (3);
  475.       dbxout_type_name (type);
  476.       typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  477.       fprintf (asmfile, ":");
  478.       return;
  479.     }
  480.       putc ('e', asmfile);
  481.       CHARS (1);
  482.       for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
  483.     {
  484.       fprintf (asmfile, "%s:%d,", IDENTIFIER_POINTER (TREE_PURPOSE (tem)),
  485.            TREE_INT_CST_LOW (TREE_VALUE (tem)));
  486.       CHARS (11 + IDENTIFIER_LENGTH (TREE_PURPOSE (tem)));
  487.       if (TREE_CHAIN (tem) != 0)
  488.         CONTIN;
  489.     }
  490.       putc (';', asmfile);
  491.       CHARS (1);
  492.       break;
  493.  
  494.     case POINTER_TYPE:
  495.       putc ('*', asmfile);
  496.       CHARS (1);
  497.       dbxout_type (TREE_TYPE (type), 0);
  498.       break;
  499.  
  500.     case METHOD_TYPE:
  501.       if (use_gdb_dbx_extensions)
  502.     {
  503.       putc ('@', asmfile);
  504.       CHARS (1);
  505.       dbxout_type (TYPE_METHOD_BASETYPE (type), 0);
  506.       putc (',', asmfile);
  507.       CHARS (1);
  508.       dbxout_type (TREE_TYPE (type), 0);
  509.     }
  510.       else
  511.     {
  512.       /* Treat it as a function type.  */
  513.       dbxout_type (TREE_TYPE (type), 0);
  514.     }
  515.       break;
  516.  
  517.     case OFFSET_TYPE:
  518.       if (use_gdb_dbx_extensions)
  519.     {
  520.       putc ('@', asmfile);
  521.       CHARS (1);
  522.       dbxout_type (TYPE_OFFSET_BASETYPE (type), 0);
  523.       putc (',', asmfile);
  524.       CHARS (1);
  525.       dbxout_type (TREE_TYPE (type), 0);
  526.     }
  527.       else
  528.     {
  529.       /* Treat it as a function type.  */
  530.       dbxout_type (TREE_TYPE (type), 0);
  531.     }
  532.       break;
  533.  
  534.     case REFERENCE_TYPE:
  535.       putc (use_gdb_dbx_extensions ? '&' : '*', asmfile);
  536.       CHARS (1);
  537.       dbxout_type (TREE_TYPE (type), 0);
  538.       break;
  539.  
  540.     case FUNCTION_TYPE:
  541.       putc ('f', asmfile);
  542.       CHARS (1);
  543.       dbxout_type (TREE_TYPE (type), 0);
  544.       break;
  545.  
  546.     default:
  547.       abort ();
  548.     }
  549. }
  550.  
  551. /* Output the name of type TYPE, with no punctuation.
  552.    Such names can be set up either by typedef declarations
  553.    or by struct, enum and union tags.  */
  554.  
  555. static void
  556. dbxout_type_name (type)
  557.      register tree type;
  558. {
  559.   tree t;
  560.   if (TYPE_NAME (type) == 0)
  561.     abort ();
  562.   if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  563.     {
  564.       t = TYPE_NAME (type);
  565.     }
  566.   else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
  567.     {
  568.       t = DECL_NAME (TYPE_NAME (type));
  569.     }
  570.   else
  571.     abort ();
  572.  
  573.   fprintf (asmfile, "%s", IDENTIFIER_POINTER (t));
  574.   CHARS (IDENTIFIER_LENGTH (t));
  575. }
  576.  
  577. /* Output a .stabs for the symbol defined by DECL,
  578.    which must be a ..._DECL node in the normal namespace.
  579.    It may be a CONST_DECL, a FUNCTION_DECL, a PARM_DECL or a VAR_DECL.
  580.    LOCAL is nonzero if the scope is less than the entire file.  */
  581.  
  582. void
  583. dbxout_symbol (decl, local)
  584.      tree decl;
  585.      int local;
  586. {
  587.   int letter = 0;
  588.   tree type = TREE_TYPE (decl);
  589.  
  590.   /* If global, first output all types and all
  591.      struct, enum and union tags that have been created
  592.      and not yet output.  */
  593.  
  594.   if (local == 0)
  595.     {
  596.       dbxout_tags (gettags ());
  597.       dbxout_types (get_permanent_types ());
  598.     }
  599.  
  600.   current_sym_code = 0;
  601.   current_sym_value = 0;
  602.   current_sym_addr = 0;
  603.  
  604.   /* The output will always start with the symbol name,
  605.      so count that always in the length-output-so-far.  */
  606.  
  607.   current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (decl));
  608.  
  609.   switch (TREE_CODE (decl))
  610.     {
  611.     case CONST_DECL:
  612.       /* Enum values are defined by defining the enum type.  */
  613.       break;
  614.  
  615.     case FUNCTION_DECL:
  616.       if (DECL_RTL (decl) == 0)
  617.     return;
  618.       if (TREE_EXTERNAL (decl))
  619.     break;
  620.       if (GET_CODE (DECL_RTL (decl)) != MEM
  621.       || GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
  622.     break;
  623.       FORCE_TEXT;
  624.       fprintf (asmfile, ".stabs \"%s:%c",
  625.            IDENTIFIER_POINTER (DECL_NAME (decl)),
  626.            TREE_PUBLIC (decl) ? 'F' : 'f');
  627.  
  628.       current_sym_code = N_FUN;
  629.       current_sym_addr = XEXP (DECL_RTL (decl), 0);
  630.  
  631.       if (TREE_TYPE (TREE_TYPE (decl)))
  632.     dbxout_type (TREE_TYPE (TREE_TYPE (decl)), 0);
  633.       else
  634.     dbxout_type (void_type_node, 0);
  635.       dbxout_finish_symbol ();
  636.       break;
  637.  
  638.     case TYPE_DECL:
  639. #if 0
  640.       /* This seems all wrong.  Outputting most kinds of types gives no name
  641.      at all.  A true definition gives no name; a cross-ref for a
  642.      structure can give the tag name, but not a type name.
  643.      It seems that no typedef name is defined by outputting a type.  */
  644.  
  645.       /* If this typedef name was defined by outputting the type,
  646.      don't duplicate it.  */
  647.       if (typevec[TYPE_SYMTAB_ADDRESS (type)] == TYPE_DEFINED
  648.       && TYPE_NAME (TREE_TYPE (decl)) == decl)
  649.     return;
  650. #endif
  651.       /* Don't output the same typedef twice.  */
  652.       if (TREE_ASM_WRITTEN (decl))
  653.     return;
  654.  
  655.       /* Output typedef name.  */
  656.       FORCE_TEXT;
  657.       fprintf (asmfile, ".stabs \"%s:t",
  658.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  659.  
  660.       current_sym_code = N_LSYM;
  661.  
  662.       dbxout_type (TREE_TYPE (decl), 1);
  663.       dbxout_finish_symbol ();
  664.  
  665.       /* Prevent duplicate output of a typedef.  */
  666.       TREE_ASM_WRITTEN (decl) = 1;
  667.       break;
  668.       
  669.     case PARM_DECL:
  670.       /* Parm decls go in their own separate chains
  671.      and are output by dbxout_reg_parms and dbxout_parms.  */
  672.       abort ();
  673.  
  674.     case VAR_DECL:
  675.       if (DECL_RTL (decl) == 0)
  676.     return;
  677.       /* Don't mention a variable that is external.
  678.      Let the file that defines it describe it.  */
  679.       if (TREE_EXTERNAL (decl))
  680.     break;
  681.  
  682.       /* Don't mention a variable at all
  683.      if it was completely optimized into nothingness.  */
  684.       if (GET_CODE (DECL_RTL (decl)) == REG
  685.       && (REGNO (DECL_RTL (decl)) < 0
  686.           || REGNO (DECL_RTL (decl)) >= FIRST_PSEUDO_REGISTER))
  687.     break;
  688.  
  689.       /* The kind-of-variable letter depends on where
  690.      the variable is and on the scope of its name:
  691.      G and N_GSYM for static storage and global scope,
  692.      S for static storage and file scope,
  693.      V for static storage and local scope,
  694.         for those two, use N_LCSYM if data is in bss segment,
  695.         N_STSYM if in data segment, N_FUN otherwise.
  696.         (We used N_FUN originally, then changed to N_STSYM
  697.         to please GDB.  However, it seems that confused ld.
  698.         Now GDB has been fixed to like N_FUN, says Kingdon.)
  699.      no letter at all, and N_LSYM, for auto variable,
  700.      r and N_RSYM for register variable.  */
  701.  
  702.       if (GET_CODE (DECL_RTL (decl)) == MEM
  703.       && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
  704.     {
  705.       if (TREE_PUBLIC (decl))
  706.         {
  707.           letter = 'G';
  708.           current_sym_code = N_GSYM;
  709.         }
  710.       else
  711.         {
  712.           current_sym_addr = XEXP (DECL_RTL (decl), 0);
  713.  
  714.           letter = TREE_PERMANENT (decl) ? 'S' : 'V';
  715.  
  716.           if (!DECL_INITIAL (decl))
  717.         current_sym_code = N_LCSYM;
  718.           else if (TREE_READONLY (decl) && ! TREE_VOLATILE (decl))
  719.         /* This is not quite right, but it's the closest
  720.            of all the codes that Unix defines.  */
  721.         current_sym_code = N_FUN;
  722.           else
  723.         {
  724. /* Ultrix `as' seems to need this.  */
  725. #ifdef DBX_STATIC_STAB_DATA_SECTION
  726.           data_section ();
  727. #endif
  728.           current_sym_code = N_STSYM;
  729.         }
  730.         }
  731.     }
  732.       else if (GET_CODE (DECL_RTL (decl)) == REG)
  733.     {
  734.       letter = 'r';
  735.       current_sym_code = N_RSYM;
  736.       current_sym_value = DBX_REGISTER_NUMBER (REGNO (DECL_RTL (decl)));
  737.     }
  738.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  739.            && (GET_CODE (XEXP (DECL_RTL (decl), 0)) == MEM
  740.            || (GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG
  741.                && REGNO (XEXP (DECL_RTL (decl), 0)) != FRAME_POINTER_REGNUM)))
  742.     /* If the value is indirect by memory or by a register
  743.        that isn't the frame pointer
  744.        then it means the object is variable-sized and address through
  745.        that register or stack slot.  DBX has no way to represent this
  746.        so all we can do is output the variable as a pointer.
  747.        If it's not a parameter, ignore it.
  748.        (VAR_DECLs like this can be made by integrate.c.)  */
  749.     {
  750.       if (GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG)
  751.         {
  752.           letter = 'r';
  753.           current_sym_code = N_RSYM;
  754.           current_sym_value = DBX_REGISTER_NUMBER (REGNO (XEXP (DECL_RTL (decl), 0)));
  755.         }
  756.       else
  757.         {
  758.           current_sym_code = N_LSYM;
  759.           /* DECL_RTL looks like (MEM (MEM (PLUS (REG...) (CONST_INT...)))).
  760.          We want the value of that CONST_INT.  */
  761.           current_sym_value = INTVAL (XEXP (XEXP (XEXP (DECL_RTL (decl), 0), 0), 1));
  762.         }
  763.  
  764.       /* Effectively do build_pointer_type, but don't cache this type,
  765.          since it might be temporary whereas the type it points to
  766.          might have been saved for inlining.  */
  767.       type = make_node (POINTER_TYPE);
  768.       TREE_TYPE (type) = TREE_TYPE (decl);
  769.     }
  770.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  771.            && GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG)
  772.     {
  773.       current_sym_code = N_LSYM;
  774.       current_sym_value = 0;
  775.     }
  776.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  777.            && GET_CODE (XEXP (DECL_RTL (decl), 0)) == PLUS
  778.            && GET_CODE (XEXP (XEXP (DECL_RTL (decl), 0), 1)) == CONST_INT)
  779.     {
  780.       current_sym_code = N_LSYM;
  781.       /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
  782.          We want the value of that CONST_INT.  */
  783.       current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (decl), 0), 1));
  784.     }
  785.       else
  786.     /* Address might be a MEM, when DECL is a variable-sized object.
  787.        Or it might be const0_rtx, meaning previous passes
  788.        want us to ignore this variable.  */
  789.     break;
  790.  
  791.       /* Ok, start a symtab entry and output the variable name.  */
  792.       FORCE_TEXT;
  793.       fprintf (asmfile, ".stabs \"%s:",
  794.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  795.       if (letter) putc (letter, asmfile);
  796.       dbxout_type (type, 0);
  797.       dbxout_finish_symbol ();
  798.       break;
  799.     }
  800. }
  801.  
  802. static void
  803. dbxout_finish_symbol ()
  804. {
  805.   fprintf (asmfile, "\",%d,0,0,", current_sym_code);
  806.   if (current_sym_addr)
  807.     output_addr_const (asmfile, current_sym_addr);
  808.   else
  809.     fprintf (asmfile, "%d", current_sym_value);
  810.   putc ('\n', asmfile);
  811. }
  812.  
  813. /* Output definitions of all the decls in a chain.  */
  814.  
  815. static void
  816. dbxout_syms (syms)
  817.      tree syms;
  818. {
  819.   while (syms)
  820.     {
  821.       dbxout_symbol (syms, 1);
  822.       syms = TREE_CHAIN (syms);
  823.     }
  824. }
  825.  
  826. /* The following two functions output definitions of function parameters.
  827.    Each parameter gets a definition locating it in the parameter list.
  828.    Each parameter that is a register variable gets a second definition
  829.    locating it in the register.
  830.  
  831.    Printing or argument lists in gdb uses the definitions that
  832.    locate in the parameter list.  But reference to the variable in
  833.    expressions uses preferentially the definition as a register.  */
  834.  
  835. /* Output definitions, referring to storage in the parmlist,
  836.    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
  837.  
  838. static void
  839. dbxout_parms (parms)
  840.      tree parms;
  841. {
  842.   for (; parms; parms = TREE_CHAIN (parms))
  843.     {
  844.       if (DECL_OFFSET (parms) >= 0)
  845.     {
  846.       current_sym_code = N_PSYM;
  847.       current_sym_value = DECL_OFFSET (parms) / BITS_PER_UNIT;
  848.       current_sym_addr = 0;
  849.       current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  850.  
  851.       FORCE_TEXT;
  852.       fprintf (asmfile, ".stabs \"%s:p",
  853.            IDENTIFIER_POINTER (DECL_NAME (parms)));
  854.  
  855.       if (GET_CODE (DECL_RTL (parms)) == REG
  856.           && REGNO (DECL_RTL (parms)) >= 0
  857.           && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  858.         dbxout_type (DECL_ARG_TYPE (parms), 0);
  859.       else
  860.         {
  861.           /* This is the case where the parm is passed as an int or double
  862.          and it is converted to a char, short or float and stored back
  863.          in the parmlist.  In this case, describe the parm
  864.          with the variable's declared type, and adjust the address
  865.          if the least significant bytes (which we are using) are not
  866.          the first ones.  */
  867. #ifdef BYTES_BIG_ENDIAN
  868.           if (TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  869.         current_sym_value += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  870.                       - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  871. #endif
  872.  
  873.           if (GET_CODE (DECL_RTL (parms)) == MEM
  874.           && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  875.           && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  876.           && INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == current_sym_value)
  877.         dbxout_type (TREE_TYPE (parms), 0);
  878.           else
  879.         {
  880.           current_sym_value = DECL_OFFSET (parms) / BITS_PER_UNIT;
  881.           dbxout_type (DECL_ARG_TYPE (parms), 0);
  882.         }
  883.         }
  884.       dbxout_finish_symbol ();
  885.     }
  886.       /* Parm was passed in registers.
  887.      If it lives in a hard register, output a "regparm" symbol
  888.      for the register it lives in.  */
  889.       else if (GET_CODE (DECL_RTL (parms)) == REG
  890.            && REGNO (DECL_RTL (parms)) >= 0
  891.            && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  892.     {
  893.       current_sym_code = N_RSYM;
  894.       current_sym_value = DBX_REGISTER_NUMBER (REGNO (DECL_RTL (parms)));
  895.       current_sym_addr = 0;
  896.       current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  897.  
  898.       FORCE_TEXT;
  899.       fprintf (asmfile, ".stabs \"%s:P",
  900.            IDENTIFIER_POINTER (DECL_NAME (parms)));
  901.  
  902.       dbxout_type (DECL_ARG_TYPE (parms), 0);
  903.       dbxout_finish_symbol ();
  904.     }
  905.       else if (GET_CODE (DECL_RTL (parms)) == MEM
  906.            && XEXP (DECL_RTL (parms), 0) != const0_rtx)
  907.     {
  908.       current_sym_code = N_LSYM;
  909.       /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))).
  910.          We want the value of that CONST_INT.  */
  911.       current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
  912.       current_sym_addr = 0;
  913.       current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  914.  
  915.       FORCE_TEXT;
  916.       fprintf (asmfile, ".stabs \"%s:p",
  917.            IDENTIFIER_POINTER (DECL_NAME (parms)));
  918.  
  919. #if 0 /* This is actually the case in which a parameter
  920.      is passed in registers but lives on the stack in a local slot.
  921.      The address we are using is already correct, so don't change it.  */
  922.  
  923.       /* This is the case where the parm is passed as an int or double
  924.          and it is converted to a char, short or float and stored back
  925.          in the parmlist.  In this case, describe the parm
  926.          with the variable's declared type, and adjust the address
  927.          if the least significant bytes (which we are using) are not
  928.          the first ones.  */
  929. #ifdef BYTES_BIG_ENDIAN
  930.       if (TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  931.         current_sym_value += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  932.                   - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  933. #endif
  934. #endif /* 0 */
  935.  
  936.       dbxout_type (TREE_TYPE (parms), 0);
  937.       dbxout_finish_symbol ();
  938.     }
  939.     }
  940. }
  941.  
  942. /* Output definitions, referring to registers,
  943.    of all the parms in PARMS which are stored in registers during the function.
  944.    PARMS is a chain of PARM_DECL nodes.  */
  945.  
  946. static void
  947. dbxout_reg_parms (parms)
  948.      tree parms;
  949. {
  950.   while (parms)
  951.     {
  952.       /* Report parms that live in registers during the function.  */
  953.       if (GET_CODE (DECL_RTL (parms)) == REG
  954.       && REGNO (DECL_RTL (parms)) >= 0
  955.       && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER
  956.       && DECL_OFFSET (parms) >= 0)
  957.     {
  958.       current_sym_code = N_RSYM;
  959.       current_sym_value = DBX_REGISTER_NUMBER (REGNO (DECL_RTL (parms)));
  960.       current_sym_addr = 0;
  961.       current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  962.       FORCE_TEXT;
  963.       fprintf (asmfile, ".stabs \"%s:r",
  964.            IDENTIFIER_POINTER (DECL_NAME (parms)));
  965.       dbxout_type (TREE_TYPE (parms), 0);
  966.       dbxout_finish_symbol ();
  967.     }
  968.       /* Report parms that live in memory but outside the parmlist.  */
  969.       else if (GET_CODE (DECL_RTL (parms)) == MEM
  970.            && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  971.            && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT)
  972.     {
  973.       int offset = DECL_OFFSET (parms) / BITS_PER_UNIT;
  974.       /* A parm declared char is really passed as an int,
  975.          so it occupies the least significant bytes.
  976.          On a big-endian machine those are not the low-numbered ones.  */
  977. #ifdef BYTES_BIG_ENDIAN
  978.       if (offset != -1 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  979.         offset += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  980.                - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  981. #endif
  982.       if (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) != offset)
  983.         {
  984.           current_sym_code = N_LSYM;
  985.           current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
  986.           current_sym_addr = 0;
  987.           current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  988.           FORCE_TEXT;
  989.           fprintf (asmfile, ".stabs \"%s:",
  990.                IDENTIFIER_POINTER (DECL_NAME (parms)));
  991.           dbxout_type (TREE_TYPE (parms), 0);
  992.           dbxout_finish_symbol ();
  993.         }
  994.     }
  995.       parms = TREE_CHAIN (parms);
  996.     }
  997. }
  998.  
  999. /* Given a chain of ..._TYPE nodes (as come in a parameter list),
  1000.    output definitions of those names, in raw form */
  1001.  
  1002. void
  1003. dbxout_args (args)
  1004.      tree args;
  1005. {
  1006.   while (args)
  1007.     {
  1008.       putc (',', asmfile);
  1009.       dbxout_type (TREE_VALUE (args), 0);
  1010.       CHARS (1);
  1011.       args = TREE_CHAIN (args);
  1012.     }
  1013. }
  1014.  
  1015. /* Given a chain of ..._TYPE nodes,
  1016.    find those which have typedef names and output those names.
  1017.    This is to ensure those types get output.  */
  1018.  
  1019. void
  1020. dbxout_types (types)
  1021.      register tree types;
  1022. {
  1023.   while (types)
  1024.     {
  1025.       if (TYPE_NAME (types)
  1026.       && TREE_CODE (TYPE_NAME (types)) == TYPE_DECL
  1027.       && ! TREE_ASM_WRITTEN (TYPE_NAME (types)))
  1028.     dbxout_symbol (TYPE_NAME (types), 1);
  1029.       types = TREE_CHAIN (types);
  1030.     }
  1031. }
  1032.  
  1033. /* Output the tags (struct, union and enum definitions with names) for a block,
  1034.    given a list of them (a chain of TREE_LIST nodes) in TAGS.
  1035.    We must check to include those that have been mentioned already with
  1036.    only a cross-reference.  */
  1037.  
  1038. void
  1039. dbxout_tags (tags)
  1040.      tree tags;
  1041. {
  1042.   register tree link;
  1043.   for (link = tags; link; link = TREE_CHAIN (link))
  1044.     {
  1045.       register tree type = TYPE_MAIN_VARIANT (TREE_VALUE (link));
  1046.       if (TREE_PURPOSE (link) != 0
  1047.       && ! TREE_ASM_WRITTEN (link)
  1048.       && TYPE_SIZE (type) != 0)
  1049.     {
  1050.       TREE_ASM_WRITTEN (link) = 1;
  1051.       current_sym_code = N_LSYM;
  1052.       current_sym_value = 0;
  1053.       current_sym_addr = 0;
  1054.       current_sym_nchars = 2 + IDENTIFIER_LENGTH (TREE_PURPOSE (link));
  1055.  
  1056.       FORCE_TEXT;
  1057.       fprintf (asmfile, ".stabs \"%s:T",
  1058.            IDENTIFIER_POINTER (TREE_PURPOSE (link)));
  1059.       dbxout_type (type, 1);
  1060.       dbxout_finish_symbol ();
  1061.     }
  1062.     }
  1063. }
  1064.  
  1065. /* Output everything about a symbol block (that is to say, a LET_STMT node
  1066.    that represents a scope level),
  1067.    including recursive output of contained blocks.
  1068.  
  1069.    STMT is the LET_STMT node.
  1070.    DEPTH is its depth within containing symbol blocks.
  1071.    ARGS is usually zero; but for the outermost block of the
  1072.    body of a function, it is a chain of PARM_DECLs for the function parameters.
  1073.    We output definitions of all the register parms
  1074.    as if they were local variables of that block.
  1075.  
  1076.    Actually, STMT may be several statements chained together.
  1077.    We handle them all in sequence.  */
  1078.  
  1079. static void
  1080. dbxout_block (stmt, depth, args)
  1081.      register tree stmt;
  1082.      int depth;
  1083.      tree args;
  1084. {
  1085.   int blocknum;
  1086.  
  1087.   while (stmt)
  1088.     {
  1089.       switch (TREE_CODE (stmt))
  1090.     {
  1091.     case COMPOUND_STMT:
  1092.     case LOOP_STMT:
  1093.       dbxout_block (STMT_BODY (stmt), depth, 0);
  1094.       break;
  1095.  
  1096.     case IF_STMT:
  1097.       dbxout_block (STMT_THEN (stmt), depth, 0);
  1098.       dbxout_block (STMT_ELSE (stmt), depth, 0);
  1099.       break;
  1100.  
  1101.     case LET_STMT:
  1102.       /* Ignore LET_STMTs for blocks never really used to make RTL.  */
  1103.       if (! TREE_USED (stmt))
  1104.         break;
  1105.       /* In dbx format, the syms of a block come before the N_LBRAC.  */
  1106.       dbxout_tags (STMT_TYPE_TAGS (stmt));
  1107.       dbxout_syms (STMT_VARS (stmt));
  1108.       if (args)
  1109.         dbxout_reg_parms (args);
  1110.  
  1111.       /* Now output an N_LBRAC symbol to represent the beginning of
  1112.          the block.  Use the block's tree-walk order to generate
  1113.          the assembler symbols LBBn and LBEn
  1114.          that final will define around the code in this block.  */
  1115.       if (depth > 0)
  1116.         {
  1117.           char buf[20];
  1118.           blocknum = next_block_number++;
  1119.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBB", blocknum);
  1120.           fprintf (asmfile, ".stabn %d,0,0,", N_LBRAC);
  1121.           assemble_name (asmfile, buf);
  1122.           fprintf (asmfile, "\n");
  1123.         }
  1124.  
  1125.       /* Output the subblocks.  */
  1126.       dbxout_block (STMT_SUBBLOCKS (stmt), depth + 1, 0);
  1127.  
  1128.       /* Refer to the marker for the end of the block.  */
  1129.       if (depth > 0)
  1130.         {
  1131.           char buf[20];
  1132.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBE", blocknum);
  1133.           fprintf (asmfile, ".stabn %d,0,0,", N_RBRAC);
  1134.           assemble_name (asmfile, buf);
  1135.           fprintf (asmfile, "\n");
  1136.         }
  1137.     }
  1138.       stmt = TREE_CHAIN (stmt);
  1139.     }
  1140. }
  1141.  
  1142. /* Output dbx data for a function definition.
  1143.    This includes a definition of the function name itself (a symbol),
  1144.    definitions of the parameters (locating them in the parameter list)
  1145.    and then output the block that makes up the function's body
  1146.    (including all the auto variables of the function).  */
  1147.  
  1148. void
  1149. dbxout_function (decl)
  1150.      tree decl;
  1151. {
  1152.   dbxout_symbol (decl, 0);
  1153.   dbxout_parms (DECL_ARGUMENTS (decl));
  1154.   dbxout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
  1155.   
  1156.   /* If we made any temporary types in this fn that weren't
  1157.      output, output them now.  */
  1158.   dbxout_types (get_temporary_types ());
  1159. }
  1160.  
  1161. #else /* not DBX_DEBUGGING_INFO */
  1162.  
  1163. void
  1164. dbxout_init (asm_file, input_file_name)
  1165.      FILE *asm_file;
  1166.      char *input_file_name;
  1167. {}
  1168.  
  1169. void
  1170. dbxout_symbol (decl, local)
  1171.      tree decl;
  1172.      int local;
  1173. {}
  1174.  
  1175. void
  1176. dbxout_types (types)
  1177.      register tree types;
  1178. {}
  1179.  
  1180. void
  1181. dbxout_tags (tags)
  1182.      tree tags;
  1183. {}
  1184.  
  1185. void
  1186. dbxout_function (decl)
  1187.      tree decl;
  1188. #if defined( _MSDOS )
  1189. /* pc gcc fucks up without this line here. */
  1190. #endif
  1191. {}
  1192.  
  1193. #endif /* DBX_DEBUGGING_INFO */
  1194.